Skip to content

Commit 128aae6

Browse files
authored
Merge pull request #6479 from akatsoulas/fix-moderation-ui
Fix username overlapping
2 parents f0f3dd0 + b3d48b5 commit 128aae6

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

kitsune/sumo/static/sumo/scss/components/_flaggit.scss

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,14 @@
2727

2828
.flagged-item-header {
2929
display: flex;
30-
justify-content: space-between;
31-
align-items: center;
30+
flex-direction: column;
31+
gap: p.$spacing-sm;
32+
33+
@media (min-width: p.$screen-md) {
34+
flex-direction: row;
35+
justify-content: space-between;
36+
align-items: center;
37+
}
3238

3339
h2 {
3440
margin: 0;
@@ -37,6 +43,7 @@
3743
span {
3844
font-size: 1rem;
3945
font-weight: bold;
46+
white-space: nowrap;
4047
}
4148
}
4249
}
@@ -98,4 +105,4 @@
98105
form {
99106
margin-bottom: p.$spacing-sm;
100107
}
101-
}
108+
}

0 commit comments

Comments
 (0)